home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / archive / cx201e.arj / VBBINIO.BAS < prev    next >
BASIC Source File  |  1994-03-01  |  775b  |  16 lines

  1. '  BINIO interface.
  2. '  Copyright (c) 1990-1994 Eugene Nelson, Four Lakes Computing.
  3.  
  4. Global Const BINIO_OPEN_READ = 1
  5. Global Const BINIO_OPEN_WRITE = 2
  6. Global Const BINIO_OPEN_CREATE = 3
  7.  
  8. Declare Function binio_open Lib "BINIO.DLL" (ByVal s$, ByVal m%) As Integer
  9. Declare Function binio_close Lib "BINIO.DLL" (ByVal handle%) As Integer
  10. Declare Function binio_read Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
  11. Declare Function binio_write Lib "BINIO.DLL" (ByVal handle%, buff As Any, ByVal bytes&) As Long
  12. Declare Function binio_seek Lib "BINIO.DLL" (ByVal handle%, ByVal ofs&, ByVal where%) As Long
  13. Declare Function binio_tell Lib "BINIO.DLL" (ByVal handle%) As Long
  14. Declare Function binio_length Lib "BINIO.DLL" (ByVal handle%) As Long
  15.  
  16.